home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-01 / tiff256.zip / TIFF.H < prev    next >
Text File  |  1992-05-30  |  2KB  |  33 lines

  1. /*................................. TIFF.H ................ 5-30-92 ........*/
  2. /* This file declares the TIFFLB library functions and global parameters    */
  3. /* used throughout the graphics routines.                                   */
  4. /*                                                                          */
  5. /*            Copyright Spyro Gumas, 1992.  All Rights Reserved.            */
  6. /*..........................................................................*/
  7.  
  8.  
  9. /*..........................................................................*/
  10. /*                          Function Prototypes                             */
  11. /*..........................................................................*/
  12. int  _far _cdecl tf_open_file(char _far *);
  13. void _far _cdecl tf_close_file(void);
  14. int  _far _cdecl tf_get_file_info(void);
  15. int  _far _cdecl tf_skip_ifd(unsigned);
  16. void _far _cdecl tf_set_defaults(void);
  17. int  _far _cdecl tf_read_ifd(void);
  18. void _far _cdecl tf_display_image(unsigned,unsigned);
  19. void _far _cdecl tf_set_prime_colors(void);
  20.  
  21. /*..........................................................................*/
  22. /*                          Parameter Declarations                          */
  23. /*..........................................................................*/
  24.  
  25. unsigned long TF_ImageWidth, TF_ImageLength;
  26. unsigned TF_BitsPerSample[3],TF_Num_Ifd;
  27. unsigned TF_ResolutionUnit,TF_SamplesPerPixel;
  28. unsigned TF_PhotometricInterpretation;
  29. unsigned long TF_XResolution_int,TF_XResolution_frac;
  30. unsigned long TF_YResolution_int,TF_YResolution_frac;
  31. unsigned TF_Black,TF_Red,TF_Orange,TF_Yellow,TF_Green;
  32. unsigned TF_Aqua,TF_Blue,TF_Violet,TF_White;
  33.